home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / GIFLIB12.ARJ / RLE2GIF.DOC < prev    next >
Text File  |  1991-05-13  |  1KB  |  37 lines

  1.             Rle2Gif
  2.             -------
  3.  
  4. Program to convert images saved as RLE (utah raster toolkit) to GIF format.
  5.  
  6.  
  7. Usage:
  8. ------
  9.  
  10. Usage: Rle2Gif [-q] [-c #Colors] [-h] RleFile
  11.  
  12. If no RleFile is given, Rle2Gif will try to read stdin for Rle file.
  13.  
  14.  
  15. Memory required:
  16. ----------------
  17.  
  18. Screen.
  19.  
  20.  
  21. Options:
  22. --------
  23.  
  24. 1. [-q] : quite mode. Default off on MSDOS, on on unix. Controls printout
  25.    of running scan lines. Use -q- to turn off.
  26. 2. [-c #Colors] : Select size of color map in the output Gif file. #Colors
  27.    should be given as the based 2 log of number of colors. Default is 8
  28.    which is 256 colors, and which is also the maximum.
  29. 3. [-h] : print one command line help, similar to Usage above.
  30.  
  31. Notes:
  32. ------
  33.   As the RLE format allows full 24 bits per pixel (8 per primmery color)
  34. Colors must be quantized to the number of colors as set by the [-c] option,
  35. above. This process is quite slow. See the quantize.c file in the lib
  36. directory for the reference for this quantization algorithm (median cut).
  37.